Autogenerated HTML docs for v2.2.0-rc0 
diff --git a/howto/use-git-daemon.html b/howto/use-git-daemon.html index a915ab4..3b6153d 100644 --- a/howto/use-git-daemon.html +++ b/howto/use-git-daemon.html 
@@ -3,7 +3,7 @@  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">   <head>   <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />  -<meta name="generator" content="AsciiDoc 8.6.6" />  +<meta name="generator" content="AsciiDoc 8.6.9" />   <title>How to use git-daemon</title>   <style type="text/css">   /* Shared CSS for AsciiDoc xhtml11 and html5 backends */  @@ -87,10 +87,16 @@  ul > li { color: #aaa; }   ul > li > * { color: black; }    -pre {  +.monospaced, code, pre {  + font-family: "Courier New", Courier, monospace;  + font-size: inherit;  + color: navy;   padding: 0;   margin: 0;   }  +pre {  + white-space: pre-wrap;  +}     #author {   color: #527bbd;  @@ -219,7 +225,7 @@  }     div.imageblock div.content { padding-left: 0; }  -span.image img { border-style: none; }  +span.image img { border-style: none; vertical-align: text-bottom; }   a.image:visited { color: white; }     dl {  @@ -349,7 +355,7 @@  margin-bottom: 0.1em;   }    -div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {  +div.toclevel0, div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {   margin-top: 0;   margin-bottom: 0;   }  @@ -407,18 +413,14 @@  span.overline { text-decoration: overline; }   span.line-through { text-decoration: line-through; }    +div.unbreakable { page-break-inside: avoid; }  +     /*   * xhtml11 specific   *   * */    -tt {  - font-family: monospace;  - font-size: inherit;  - color: navy;  -}  -   div.tableblock {   margin-top: 1.0em;   margin-bottom: 1.5em;  @@ -452,12 +454,6 @@  *   * */    -.monospaced {  - font-family: monospace;  - font-size: inherit;  - color: navy;  -}  -   table.tableblock {   margin-top: 1.0em;   margin-bottom: 1.5em;  @@ -537,6 +533,8 @@  @media print {   body.manpage div#toc { display: none; }   }  +  +   </style>   <script type="text/javascript">   /*<![CDATA[*/  @@ -581,7 +579,7 @@    function tocEntries(el, toclevels) {   var result = new Array;  - var re = new RegExp('[hH]([2-'+(toclevels+1)+'])');  + var re = new RegExp('[hH]([1-'+(toclevels+1)+'])');   // Function that scans the DOM tree for header elements (the DOM2   // nodeIterator API would be a better technique but not supported by all   // browsers).  @@ -610,7 +608,7 @@  var i;   for (i = 0; i < toc.childNodes.length; i++) {   var entry = toc.childNodes[i];  - if (entry.nodeName == 'div'  + if (entry.nodeName.toLowerCase() == 'div'   && entry.getAttribute("class")   && entry.getAttribute("class").match(/^toclevel/))   tocEntriesToRemove.push(entry);  @@ -656,7 +654,7 @@  var entriesToRemove = [];   for (i = 0; i < noteholder.childNodes.length; i++) {   var entry = noteholder.childNodes[i];  - if (entry.nodeName == 'div' && entry.getAttribute("class") == "footnote")  + if (entry.nodeName.toLowerCase() == 'div' && entry.getAttribute("class") == "footnote")   entriesToRemove.push(entry);   }   for (i = 0; i < entriesToRemove.length; i++) {  @@ -748,12 +746,12 @@  <div class="paragraph"><p>Another word of warning: if you run</p></div>   <div class="literalblock">   <div class="content">  -<pre><tt>$ git ls-remote git://127.0.0.1/rule-the-world.git</tt></pre>  +<pre><code>$ git ls-remote git://127.0.0.1/rule-the-world.git</code></pre>   </div></div>   <div class="paragraph"><p>and you see a message like</p></div>   <div class="literalblock">   <div class="content">  -<pre><tt>fatal: The remote end hung up unexpectedly</tt></pre>  +<pre><code>fatal: The remote end hung up unexpectedly</code></pre>   </div></div>   <div class="paragraph"><p>it only means that <em>something</em> went wrong. To find out <em>what</em> went wrong,   you have to ask the server. (Git refuses to be more precise for your  @@ -762,10 +760,10 @@  <div class="paragraph"><p>With these two caveats, let&#8217;s see an example:</p></div>   <div class="literalblock">   <div class="content">  -<pre><tt>$ git daemon --reuseaddr --verbose --base-path=/home/gitte/git \  - --export-all -- /home/gitte/git/rule-the-world.git</tt></pre>  +<pre><code>$ git daemon --reuseaddr --verbose --base-path=/home/gitte/git \  + --export-all -- /home/gitte/git/rule-the-world.git</code></pre>   </div></div>  -<div class="paragraph"><p>(Of course, unless your user name is <tt>gitte</tt> <em>and</em> your repository is in  +<div class="paragraph"><p>(Of course, unless your user name is <code>gitte</code> <em>and</em> your repository is in   ~/rule-the-world.git, you have to adjust the paths. If your repository is   not bare, be aware that you have to type the path to the .git directory!)</p></div>   <div class="paragraph"><p>This invocation tries to reuse the address if it is already taken  @@ -774,15 +772,15 @@  <div class="paragraph"><p>Also, it is (relatively) verbose when somebody actually connects to it.   It also sets the base path, which means that all the projects which can be   accessed using this daemon have to reside in or under that path.</p></div>  -<div class="paragraph"><p>The option <tt>--export-all</tt> just means that you <em>don&#8217;t</em> have to create a  -file named <tt>git-daemon-export-ok</tt> in each exported repository. (Otherwise,  +<div class="paragraph"><p>The option <code>--export-all</code> just means that you <em>don&#8217;t</em> have to create a  +file named <code>git-daemon-export-ok</code> in each exported repository. (Otherwise,   git-daemon would complain loudly, and refuse to cooperate.)</p></div>   <div class="paragraph"><p>Last of all, the repository which should be exported is specified. It is   a good practice to put the paths after a "--" separator.</p></div>   <div class="paragraph"><p>Now, test your daemon with</p></div>   <div class="literalblock">   <div class="content">  -<pre><tt>$ git ls-remote git://127.0.0.1/rule-the-world.git</tt></pre>  +<pre><code>$ git ls-remote git://127.0.0.1/rule-the-world.git</code></pre>   </div></div>   <div class="paragraph"><p>If this does not work, find out why, and submit a patch to this document.</p></div>   </div>  @@ -791,7 +789,7 @@  <div id="footnotes"><hr /></div>   <div id="footer">   <div id="footer-text">  -Last updated 2014-08-17 11:15:00 PDT  +Last updated 2014-10-31 13:22:29 PDT   </div>   </div>   </body>